home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 0068 / order.bat < prev    next >
DOS Batch File  |  1997-03-23  |  1KB  |  24 lines

  1. echo off
  2. cls
  3. echo ┌────────────────────────────────────────────────────────────────────────┐
  4. echo │ This batch file will print a one page order form for Elfring Soft Font │
  5. echo │ products when you are ready. To print the form, press any key now.     │
  6. echo │                                                                        │
  7. echo │ This batch file assumes your printer is attached to LPT1:. If your     │
  8. echo │ printer is attached to a different port, press Ctrl-C now to stop this │
  9. echo │ batch file, and then run it again, passing the printer port you do use.│
  10. echo │                                                                        │
  11. echo │ ORDER LPT2:    or    ORDER COM1:                                       │
  12. echo │                                                                        │
  13. echo │ If you do *not* want to print this order form press the Ctrl-C key now │
  14. echo │ to stop this batch file.                                               │
  15. echo └────────────────────────────────────────────────────────────────────────┘
  16. pause
  17. if "%1"=="" goto DO2
  18. copy order.txt %1
  19. goto theend
  20. :DO2
  21. copy order.txt LPT1:
  22. :THEEND
  23.  
  24.